/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

/* Dark Theme */

.v3d-simple-preloader-background {
    background-color: #181818;
}

.v3d-simple-preloader-container {
    filter: drop-shadow(0px 0px 4px #2a69bd);
}
.v3d-simple-preloader-logo{
    background-image: url("media/Preloader.png");
}
.v3d-annotation-container {
  text-align: center; /* Центрируем блок по горизонтали */
}

.v3d-annotation {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block; /* Блок теперь позиционируется внутри родителя */
  padding: 10px 20px;
  border: 2px solid #ffffff;
  border-radius: 11px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(0,0,0,1);
  text-align: center;
  white-space: pre;
  background: rgb(255,209,0);
background: linear-gradient(90deg, rgba(255,209,0,1) 0%, rgba(255,100,18,1) 25%, rgba(255,38,121,1) 50%, rgba(148,2,250,1) 75%, rgba(0,212,255,1) 100%);
  background-position: 50% 50%;
  background-origin: padding-box;
  background-clip: border-box;
  background-size: auto auto;
  box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2);
  text-shadow: -.5px -.5px 0 rgba(0,0,0,0.66);
  max-width: 100%; /* Максимальная ширина блока будет ширина текста */
  max-height: 100%;
  height: auto;
  animation: myAnim 1s ease 0s 1 normal forwards;
}

@keyframes myAnim {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

